【例子介绍】Machine Learning A-Z New
【相关图片】
【源码结构】
.
├── Machine Learning A-Z New
│ ├── Part 0 - Welcome to Machine Learning A-Z
│ │ └── Section 1 - Welcome to Machine Learning A-Z !
│ ├── Part 1 - Data Preprocessing
│ │ └── Section 2 -------------------- Part 1 - Data Preprocessing --------------------
│ │ ├── Data.csv
│ │ ├── categorical_data.R
│ │ ├── categorical_data.py
│ │ ├── data_preprocessing_template.R
│ │ ├── data_preprocessing_template.py
│ │ ├── missing_data.R
│ │ └── missing_data.py
│ ├── Part 10 - Model Selection & Boosting
│ │ ├── Section 47 -------------------- Part 10 - Model Selection --------------------
│ │ ├── Section 48 - Model Selection
│ │ │ ├── Social_Network_Ads.csv
│ │ │ ├── grid_search.R
│ │ │ ├── grid_search.py
│ │ │ ├── k_fold_cross_validation.R
│ │ │ └── k_fold_cross_validation.py
│ │ ├── Section 49 - XGBoost
│ │ │ ├── Churn_Modelling.csv
│ │ │ ├── xg_boost.R
│ │ │ └── xg_boost.py
│ │ └── Section 50 - Part Recap
│ ├── Part 2 - Regression
│ │ ├── Section 10 - Evaluating Regression Models Performance
│ │ ├── Section 11 - Regularization Methods
│ │ ├── Section 12 - Part Recap
│ │ ├── Section 3 -------------------- Part 2 - Regression --------------------
│ │ ├── Section 4 - Simple Linear Regression
│ │ │ ├── Salary_Data.csv
│ │ │ ├── data_preprocessing_template.R
│ │ │ ├── data_preprocessing_template.py
│ │ │ ├── simple_linear_regression.R
│ │ │ └── simple_linear_regression.py
│ │ ├── Section 5 - Multiple Linear Regression
│ │ │ ├── 50_Startups.csv
│ │ │ ├── data_preprocessing_template.R
│ │ │ ├── data_preprocessing_template.py
│ │ │ ├── multiple_linear_regression.R
│ │ │ └── multiple_linear_regression.py
│ │ ├── Section 6 - Polynomial Regression
│ │ │ ├── Position_Salaries.csv
│ │ │ ├── data_preprocessing_template.R
│ │ │ ├── data_preprocessing_template.py
│ │ │ ├── polynomial_regression.R
│ │ │ └── polynomial_regression.py
│ │ ├── Section 7 - Support Vector Regression (SVR)
│ │ │ ├── Position_Salaries.csv
│ │ │ ├── regression_template.R
│ │ │ ├── regression_template.py
│ │ │ ├── svr.R
│ │ │ └── svr.py
│ │ ├── Section 8 - Decision Tree Regression
│ │ │ ├── Position_Salaries.csv
│ │ │ ├── decision_tree_regression.R
│ │ │ ├── decision_tree_regression.py
│ │ │ ├── regression_template.R
│ │ │ └── regression_template.py
│ │ └── Section 9 - Random Forest Regression
│ │ ├── Position_Salaries.csv
│ │ ├── random_forest_regression.R
│ │ ├── random_forest_regression.py
│ │ ├── regression_template.R
│ │ └── regression_template.py
│ ├── Part 3 - Classification
│ │ ├── Section 13 -------------------- Part 3 - Classification --------------------
│ │ ├── Section 14 - Logistic Regression
│ │ │ ├── Social_Network_Ads.csv
│ │ │ ├── logistic_regression.R
│ │ │ └── logistic_regression.py
│ │ ├── Section 15 - K-Nearest Neighbors (K-NN)
│ │ │ ├── Social_Network_Ads.csv
│ │ │ ├── classification_template.R
│ │ │ ├── classification_template.py
│ │ │ ├── knn.R
│ │ │ └── knn.py
│ │ ├── Section 16 - Support Vector Machine (SVM)
│ │ │ ├── Social_Network_Ads.csv
│ │ │ ├── classification_template.R
│ │ │ ├── classification_template.py
│ │ │ ├── svm.R
│ │ │ └── svm.py
│ │ ├── Section 17 - Kernel SVM
│ │ │ ├── Social_Network_Ads.csv
│ │ │ ├── classification_template.R
│ │ │ ├── classification_template.py
│ │ │ ├── kernel_svm.R
│ │ │ └── kernel_svm.py
│ │ ├── Section 18 - Naive Bayes
│ │ │ ├── Social_Network_Ads.csv
│ │ │ ├── classification_template.R
│ │ │ ├── classification_template.py
│ │ │ ├── naive_bayes.R
│ │ │ └── naive_bayes.py
│ │ ├── Section 19 - Decision Tree Classification
│ │ │ ├── Social_Network_Ads.csv
│ │ │ ├── classification_template.R
│ │ │ ├── classification_template.py
│ │ │ ├── decision_tree_classification.R
│ │ │ └── decision_tree_classification.py
│ │ ├── Section 20 - Random Forest Classification
│ │ │ ├── Social_Network_Ads.csv
│ │ │ ├── classification_template.R
│ │ │ ├── classification_template.py
│ │ │ ├── random_forest_classification.R
│ │ │ └── random_forest_classification.py
│ │ ├── Section 21 - Evaluating Classification Models Performance
│ │ └── Section 22 - Part Recap
│ ├── Part 4 - Clustering
│ │ ├── Section 23 -------------------- Part 4 - Clustering --------------------
│ │ ├── Section 24 - K-Means Clustering
│ │ │ ├── Mall_Customers.csv
│ │ │ ├── data_preprocessing_template.R
│ │ │ ├── data_preprocessing_template.py
│ │ │ ├── kmeans.R
│ │ │ └── kmeans.py
│ │ ├── Section 25 - Hierarchical Clustering
│ │ │ ├── Mall_Customers.csv
│ │ │ ├── data_preprocessing_template.R
│ │ │ ├── data_preprocessing_template.py
│ │ │ ├── hc.R
│ │ │ └── hc.py
│ │ └── Section 26 - Part Recap
│ ├── Part 5 - Association Rule Learning
│ │ ├── Section 27 -------------------- Part 5 - Association Rule Learning --------------------
│ │ ├── Section 28 - Apriori
│ │ │ ├── Apriori_Python
│ │ │ │ ├── Market_Basket_Optimisation.csv
│ │ │ │ ├── apriori.py
│ │ │ │ └── apyori.py
│ │ │ └── Apriori_R
│ │ │ ├── Market_Basket_Optimisation.csv
│ │ │ └── apriori.R
│ │ ├── Section 29 - Eclat
│ │ │ ├── Market_Basket_Optimisation.csv
│ │ │ └── eclat.R
│ │ └── Section 30 - Part Recap
│ ├── Part 6 - Reinforcement Learning
│ │ ├── Section 31 -------------------- Part 6 - Reinforcement Learning --------------------
│ │ ├── Section 32 - Upper Confidence Bound (UCB)
│ │ │ ├── Ads_CTR_Optimisation.csv
│ │ │ ├── UCB_Algorithm_Slide.png
│ │ │ ├── random_selection.R
│ │ │ ├── random_selection.py
│ │ │ ├── upper_confidence_bound.R
│ │ │ └── upper_confidence_bound.py
│ │ ├── Section 33 - Thompson Sampling
│ │ │ ├── Ads_CTR_Optimisation.csv
│ │ │ ├── Thompson_Sampling_Slide.png
│ │ │ ├── random_selection.R
│ │ │ ├── random_selection.py
│ │ │ ├── thompson_sampling.R
│ │ │ └── thompson_sampling.py
│ │ └── Section 34 - Part Recap
│ ├── Part 7 - Natural Language Processing
│ │ ├── Section 35 -------------------- Part 7 - Natural Language Processing --------------------
│ │ ├── Section 36 - Natural Language Processing
│ │ │ ├── Restaurant_Reviews.tsv
│ │ │ ├── natural_language_processing.R
│ │ │ └── natural_language_processing.py
│ │ └── Section 37 - Part Recap
│ ├── Part 8 - Deep Learning
│ │ ├── Section 38 -------------------- Part 8 - Deep Learning --------------------
│ │ ├── Section 39 - Artificial Neural Networks (ANN)
│ │ │ ├── Churn_Modelling.csv
│ │ │ ├── Stochastic_Gradient_Descent.png
│ │ │ ├── ann.R
│ │ │ └── ann.py
│ │ ├── Section 40 - Convolutional Neural Networks (CNN)
│ │ │ ├── cnn.py
│ │ │ └── dataset
│ │ │ ├── test_set
│ │ │ │ ├── cats
│ │ │ │ └── dogs
│ │ │ └── training_set
│ │ │ ├── cats
│ │ │ └── dogs
│ │ └── Section 41 - Part Recap
│ └── Part 9 - Dimensionality Reduction
│ ├── Section 42 -------------------- Part 9 - Dimensionality Reduction --------------------
│ ├── Section 43 - Principal Component Analysis (PCA)
│ │ ├── Wine.csv
│ │ ├── pca.R
│ │ └── pca.py
│ ├── Section 44 - Linear Discriminant Analysis (LDA)
│ │ ├── Wine.csv
│ │ ├── lda.R
│ │ └── lda.py
│ ├── Section 45 - Kernel PCA
│ │ ├── Social_Network_Ads.csv
│ │ ├── kernel_pca.R
│ │ └── kernel_pca.py
│ └── Section 46 - Part Recap
├── ]Machine Learning A-Z New.zip
└── __MACOSX
└── Machine Learning A-Z New
├── Part 0 - Welcome to Machine Learning A-Z
├── Part 1 - Data Preprocessing
│ └── Section 2 -------------------- Part 1 - Data Preprocessing --------------------
├── Part 10 - Model Selection & Boosting
│ ├── Section 48 - Model Selection
│ └── Section 49 - XGBoost
├── Part 2 - Regression
│ ├── Section 4 - Simple Linear Regression
│ ├── Section 5 - Multiple Linear Regression
│ ├── Section 6 - Polynomial Regression
│ ├── Section 7 - Support Vector Regression (SVR)
│ ├── Section 8 - Decision Tree Regression
│ └── Section 9 - Random Forest Regression
├── Part 3 - Classification
│ ├── Section 14 - Logistic Regression
│ ├── Section 15 - K-Nearest Neighbors (K-NN)
│ ├── Section 16 - Support Vector Machine (SVM)
│ ├── Section 17 - Kernel SVM
│ ├── Section 18 - Naive Bayes
│ ├── Section 19 - Decision Tree Classification
│ └── Section 20 - Random Forest Classification
├── Part 4 - Clustering
│ ├── Section 24 - K-Means Clustering
│ └── Section 25 - Hierarchical Clustering
├── Part 5 - Association Rule Learning
│ ├── Section 28 - Apriori
│ │ ├── Apriori_Python
│ │ └── Apriori_R
│ └── Section 29 - Eclat
├── Part 6 - Reinforcement Learning
│ ├── Section 32 - Upper Confidence Bound (UCB)
│ └── Section 33 - Thompson Sampling
├── Part 7 - Natural Language Processing
│ └── Section 36 - Natural Language Processing
├── Part 8 - Deep Learning
│ ├── Section 39 - Artificial Neural Networks (ANN)
│ └── Section 40 - Convolutional Neural Networks (CNN)
│ └── dataset
│ ├── test_set
│ └── training_set
└── Part 9 - Dimensionality Reduction
├── Section 43 - Principal Component Analysis (PCA)
├── Section 44 - Linear Discriminant Analysis (LDA)
└── Section 45 - Kernel PCA
117 directories, 125 files
评论